home *** CD-ROM | disk | FTP | other *** search
- Path: news.interport.net!usenet
- From: yaron@interport.net (Adi)
- Newsgroups: comp.lang.c++
- Subject: Assembler and C++
- Date: Sun, 10 Mar 1996 05:03:51 GMT
- Organization: Interport Communications Corp.
- Message-ID: <4htde7$3il@park.interport.net>
- NNTP-Posting-Host: yaron.port.net
- X-Newsreader: Forte Free Agent 1.0.82
-
- Can anybody show me how can I access class data members with assembler
- commands, from within a method of the class :
-
-
- class foo {
- public :
- foo() : x(0), y(0), str(0) {}
- virtual ~foo() {}
-
- void Display()
- {
- _asm {
-
- ????
-
- }
- }
-
- protected :
- int x, y;
- const char * str;
- };
-
-
-